/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2012                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

scale   0.01;

vertices
(
    ( 0.00  -2.50  -2.50) //0
    ( 3.456  -2.50  -2.50) //1
    ( 2.59  -1.50  -2.50) //2
    ( 2.61  -1.50  -2.50) //3
    ( 3.476  -2.50  -2.50) //4
    ( 5.00  -2.50  -2.50) //5
    ( 5.00  -1.50  -2.50) //6
    ( 5.00   1.50  -2.50) //7
    ( 5.00   2.50  -2.50) //8
    ( 1.744   2.50  -2.50) //9
    ( 2.61   1.50  -2.50) //10 
    ( 2.59   1.50  -2.50) //11
    ( 1.724   2.50  -2.50) //12
    ( 0.00   2.50  -2.50) //13
    ( 0.00   1.50  -2.50) //14
    ( 0.00  -1.50  -2.50) //15

    ( 0.00  -2.50   2.50) //16
    ( 3.456  -2.50   2.50) //17
    ( 2.59  -1.50   2.50) //18
    ( 2.61  -1.50   2.50) //19
    ( 3.476  -2.50   2.50) //20
    ( 5.00  -2.50   2.50) //21
    ( 5.00  -1.50   2.50) //22
    ( 5.00   1.50   2.50) //23
    ( 5.00   2.50   2.50) //24
    ( 1.744   2.50   2.50) //25
    ( 2.61   1.50   2.50) //26
    ( 2.59   1.50   2.50) //27
    ( 1.724   2.50   2.50) //28
    ( 0.00   2.50   2.50) //29
    ( 0.00   1.50   2.50) //30
    ( 0.00  -1.50   2.50) //31

);

blocks
(
    hex ( 0  1  2 15 16 17 18 31) ( 15 12 15) simpleGrading (1 1 1)
    hex (15  2 11 14 31 18 27 30) ( 15 12 15) simpleGrading (1 1 1)
    hex (14 11 12 13 30 27 28 29) ( 15 12 15) simpleGrading (1 1 1)
    hex ( 2  3 10 11 18 19 26 27) ( 1  12 15) simpleGrading (1 1 1)
    hex ( 4  5  6  3 20 21 22 19) ( 25 12 15) simpleGrading (1 1 1)
    hex ( 3  6  7 10 19 22 23 26) ( 25 12 15) simpleGrading (1 1 1)
    hex (10  7  8  9 26 23 24 25) ( 25 12 15) simpleGrading (1 1 1)
);

edges
(
);

boundary
(
    outlet
    {
        type cyclic;
        neighbourPatch  inlet;
        faces
        (
            (15  0 16 31)
            (14 15 31 30)
            (13 14 30 29)
        );
    }

    inlet
    {
        type cyclic;
        neighbourPatch  outlet;
        faces
        (
            ( 5  6 22 21)
            ( 6  7 23 22)
            ( 7  8 24 23)
        );
    }

    walls
    {
        type wall;
        faces
        (
            ( 1  0 16 17)
            ( 2  1 17 18)
            ( 3  2 18 19)
            ( 4  3 19 20)
            ( 5  4 20 21)
            ( 9  8 24 25)
            (10  9 25 26)
            (11 10 26 27)
            (12 11 27 28)
            (13 12 28 29)
        );
    }

    frontBack
    {
        type empty;
        faces
        (
            ( 0 15  2  1)
            (15 14 11  2)
            (14 13 12 11)
            ( 2 11 10  3)
            ( 4  3  6  5)
            ( 3 10  7  6)
            (10  9  8  7)

            (16 17 18 31)
            (31 18 27 30)
            (30 27 28 29)
            (18 19 26 27)
            (20 21 22 19)
            (19 22 23 26)
            (26 23 24 25)
        );
    }
);

// ************************************************************************* //
